home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / qbasicpg.zip / CALC.BAS < prev    next >
BASIC Source File  |  1989-08-31  |  217b  |  11 lines

  1. ' CALC.BAS
  2. ' This program calculates and prints four formulas.
  3.  
  4. CLS
  5.  
  6. PRINT "ABS(-10) + 5 ="; ABS(-10) + 5
  7. PRINT "SQR(36) ="; SQR(36)
  8. PRINT "SQR(4) ^ 2 ="; SQR(4) ^ 2
  9. PRINT "COS(3.14) = "; COS(3.141592654#)
  10.  
  11.